home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / WASTE 1.0a4 Distribution / WASTE Headers / C Interfaces / LongCoords.h next >
Text File  |  1994-03-28  |  363b  |  27 lines

  1. /*
  2.  *    LongCoords.h
  3.  *
  4.  *    C interface to the WASTE text engine:
  5.  *    Long Coordinates
  6.  *
  7.  *    Copyright (c) 1993-1994 Merzwaren
  8.  *    All Rights Reserved
  9.  */
  10.  
  11. #ifndef _LongCoords_
  12. #define _LongCoords_
  13.  
  14. typedef struct LongPoint {
  15.     long v;
  16.     long h;
  17. } LongPoint;
  18.  
  19. typedef struct LongRect {
  20.     long top;
  21.     long left;
  22.     long bottom;
  23.     long right;
  24. } LongRect;
  25.  
  26. #endif _LongCoords_
  27.